home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Developer's Kit 1996
/
Delphi Developer's Kit 1996.iso
/
power
/
glyphpro
/
glyphpro.dpr
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
1995-12-22
|
287 b
|
16 lines
program Glyphpro;
uses
Forms,
Main in 'MAIN.PAS' {Form1},
Options in 'OPTIONS.PAS' {FormOptions},
Seldir in 'SELDIR.PAS' {FormSelectDirectory};
{$R *.RES}
begin
Application.Title := 'GlyphPro';
Application.CreateForm(TForm1, Form1);
Application.Run;
end.